
        body {
            background-color: #e0b1cb;
            margin: 0;
            overflow-x: hidden;
        }
        h1 {
            color: #231942;
            text-align: center;
			font-size: 48px; 
        }
        header {
            display: flex;
			text-align: center;
            justify-content: space-between;
            padding: 10px 20px;
            color: #231942;
			font-size: 48px; 
        }
.logo {
    font-size: 18px;
    color: #231942;
}
        .menu-container {
            position: relative;
        }
        .menu-button {
            background: none;
            color: #231942;
            border: #231942;
            padding: 10px 15px;
            cursor: pointer;
            font-size: 16px;
            border-radius: 5px;
			margin-left: 35px; 
        }
        .dropdown-menu {
            display: none;
            position: absolute;
            background: none;
            border-radius: 5px;
			text-decoration: none;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
            list-style: none;
            padding: 10px 0;
            min-width: 150px;
        }

        .dropdown-menu a {
            color: black;
  			padding: 12px 16px;
  			text-decoration: none;
  			display: block;
			font-size: 15px; 
        }
        .dropdown-menu a:hover {
            background: #e0b1cb;
			text-decoration: none; 
        }
        .menu-container:hover .dropdown-menu {
            display: block;
        }

/* Project Description*/
.profile {
	display: flex;
	align-items: center;
    justify-content: space-between;
	background-image: url('../images/Profile.png'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.item2{
	display: flex;
    flex-direction: column;
	background-color: none;
	color: #231942;  
font-size: 20px;
	 margin-bottom: 15px; 
    line-height: 1.6;
	padding: 20px;
	align-items: center;
    justify-content: space-between;
	
}
.item3{
	display: flex;
    flex-direction: column;
	background-color: none;
	color: #231942;  
font-size: 48px;
	 margin-bottom: 15px;
	margin-top: 50px;
	font-weight: bold; 
    line-height: 1.6;
	padding: 20px;
	align-items: center;
    justify-content: space-between;
scroll-snap-align: none end;
  scroll-margin-block: 20px 0;
} 

        .carousel-container {
            position: relative;
            width: 90%;
            margin: auto;
            overflow: hidden;
            white-space: nowrap;
        }
        .carousel {
            display: flex;
            transition: transform 0.5s ease-in-out;
            will-change: transform;
            white-space: nowrap;
        }
        .card {
            flex: 0 0 auto;
            width: 600px;
            background: white;
            border-radius: 15px;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            text-align: center;
            margin: 0 10px;
        }
        .card img {
            width: 100%;
            height: auto;
            border-top-left-radius: 15px;
            border-top-right-radius: 15px;
        }
        .card p {
            font-size: 18px;
            color: #231942;
            padding: 10px;
        }
        .card a {
            text-decoration: none;
            color: inherit;
            display: block;
        }
.card:hover {
	transform: scale(1.05);
}
        .arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            padding: 10px;
            cursor: pointer;
            border-radius: 50%;
            z-index: 100;
        }
        .prev {
            left: 10px;
        }
        .next {
            right: 10px;
        }
        .carousel:-webkit-scrollbar {
            display: none;
        }

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

#section-a {
	scroll-snap-align: none end;
	scroll-snap-type: y mandatory;
}

#section-b {
    scroll-margin-top: 80px;
	scroll-snap-type: y mandatory;
}

